home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000307_news@columbia.edu_Wed Nov 30 03:12:27 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  6KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18187
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 29 Nov 1994 22:12:35 -0500
  3. Received: by apakabar.cc.columbia.edu id AA17758
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 29 Nov 1994 22:12:34 -0500
  5. Path: news.columbia.edu!sawasdee.cc.columbia.edu!ycl6
  6. From: Yeechang Lee <ycl6@columbia.edu>
  7. Newsgroups: news.newusers.questions,comp.protocols.kermit.misc
  8. Subject: Assorted MS-Kermit questions
  9. Date: Tue, 29 Nov 1994 22:12:27 -0500
  10. Organization: Columbia University
  11. Lines: 86
  12. Message-Id: <Pine.SUN.3.91.941129215119.12186A-100000@sawasdee.cc.columbia.edu>
  13. References: <3beh0j$dm5@news.sas.ab.ca> <D00z3M.21J@iglou.com> <199411300248.VAA06939@acmez.gatech.edu>
  14. Nntp-Posting-Host: sawasdee.cc.columbia.edu
  15. Mime-Version: 1.0
  16. Content-Type: TEXT/PLAIN; charset=US-ASCII
  17. X-Sender: ycl6@sawasdee.cc.columbia.edu
  18. In-Reply-To: <199411300248.VAA06939@acmez.gatech.edu>
  19. Xref: news.columbia.edu news.newusers.questions:41077 comp.protocols.kermit.misc:1252
  20. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21.  
  22. On Tue, 29 Nov 1994 gt7611a@prism.gatech.edu wrote:
  23. > The only complaint I have, is
  24. > that you cannot scroll back like you can with some other packages. (Or can
  25. > you?  I don't know how.)  
  26.  
  27. First, make sure you're running the latest version (3.13 is the latest
  28. production version; 3.14 is in solid beta.  Both are available at
  29. ftp://kermit.columbia.edu/kermit, or http://kermit.columbia.edu/)
  30.  
  31. To turn screen rollback on, put
  32.  
  33. SET TERM ROLLBACK ON
  34.  
  35. in your mscustom.ini file.  Then put
  36.  
  37. SET ROLLBACK xxxx (where xxxx=# between 1 and 8000)
  38.  
  39. to govern how many screens will be remembered.  By default, the grey PageUp
  40. and PageDown keys will be used to scroll up and down--if you don't like
  41. this, you can redefine the keys.
  42.  
  43. > I use GSZ, a Zmodem implementation, to download files -- I find it faster
  44. > than Kermit.  On the other hand, I have frequently had difficulty
  45. > downloading using Zmodem, and then I download the same file effortlessly,
  46. > although more slowly, using Kermit.  Why is it more robust?
  47.  
  48. Kermit is a very cautious protocol.  It "escapes" or sort of specially-marks
  49. all unusual control characters so they'll cross any link, whether a dialup
  50. to a BBS, dialup to a university Unix system through a terminal server, or
  51. whatever.  (This is one of the reasons for Kermit's slower performance
  52. compared to Zmodem.) By contrast, ZModem was originally designed for 8-bit
  53. clean lines (e.g., the kind of connection you get calling a BBS over the
  54. phone).  It escapes no control characters at all (though this can be
  55. changed--see your ZModem docs).  You can experiment with only escaping the
  56. control characters on Kermit that cause problems for your system; this will
  57. help your throughput a lot.  Get the Kermit 3.14 beta--it has a document,
  58. PERFORM.DOC, that details all this and more.
  59.  
  60. > *  I have heard, and you mention the same, that Kermit is only marginally
  61. > slower than Zmodem "if the settings are right".  I have tweaked the packet
  62. > sizes, but I'm really only shooting in the dark.  I have seen faster
  63. > transfers with longer packets, and my Unix machine, from which I sometimes
  64. > down / upload, prompts me to change BLOCKS.  What are all these
  65. > parameters, and what do I set them to? (And how do I know that is what I
  66. > need to set them to?)
  67.  
  68. Blocks, for Kermit, refer to checksum schemes.  Type SET BLOCK 3 on both
  69. your side and on the university's side; it'll help accuracy.
  70.  
  71. The 3.14 beta makes big improvements on all these fronts--not only is there
  72. the PERFORM.DOC, plus more discussion of this "Most Frequently Asked
  73. Question" in the main documentation (KERMIT.HLP, KERMIT.BWR), but there are
  74. also some basic macros that will set things to go a lot faster than normal
  75. automatically.
  76.  
  77. > *  I currently PUSH out of Kermit, and then run a batch file to download
  78. > using Zmodem.  It works fine, but is cumbersome.  I have had many problems
  79. > uploading, though, and I have a feeling it may be due to the PUSHing.  Is
  80. > there a way to use Zmodem straight out of Kermit's bowels?  What Zmodem
  81. > protocol implementation do you use?  Is there a freeware version? (Where
  82. > do I find it?)
  83.  
  84. Yes.  I have these lines in my mscustom.ini file;
  85.  
  86. define rz run c:\kermit\dsz\dsz.exe F ha on port 1 G rz -mrr
  87. define sz run c:\kermit\dsz\dsz.exe F ha both port 1 G sz -Q^ -m \%1 \%2,
  88.  
  89. Type the above lines _exactly_, including the case; just substitute in the
  90. filepath of your ZModem program (I'd recommend you find and use dsz.exe;
  91. it's quicker than gsz.com or dsz.com.).  The '-Q^' is required on my system
  92. to escape a control code that causes problems for my server; it tells ZModem
  93. to escape ASCII code 30, '^^'.  It probably won't be the same with your
  94. system; take that part out and see how things work out.  Talk to your
  95. sysadmins about what control characters need to be escaped on uploads and
  96. downloads.  Anyways, with these commands you can just type 'sz xyz.txt' and
  97. 'rz' to up/download right from the MS-Kermit command line.
  98.  
  99. > I look forward to hearing from you soon. 
  100.  
  101. Hope this helps.  I'll also crosspost this to comp.protocols.kermit.misc,
  102. Kermit HQ on Usenet.
  103.  
  104. --   _____________________________________________________________________
  105.      Yeechang Lee  (ycl6@columbia.edu)|Nevada Las Vegas Mission Jul'92-'94
  106.      Columbia University/New York City|Celestial Kingdom through Taco Bell
  107.